home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD ROM Paradise Collection 4
/
CD ROM Paradise Collection 4 1995 Nov.iso
/
system
/
ffg202.zip
/
DEMO_BAT.ZIP
/
VIDLINES.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-04-01
|
500b
|
19 lines
@echo off
::cls
::echo This changes the number of video lines to 25, 43, or 50.
::echo Press any key to execute...
::pause>nul
::if %1.==. goto USAGE
ffg /q /1 c:\* /v%1
goto END
:USAGE
echo USAGE: %0 [25|43|50]
echo.
echo 25 = 25 video lines
echo 43 = 43 video lines on EGA or VGA
echo 50 = 50 video lines on VGA
echo.
echo if ## lines is not specified, display lines will be toggled between
echo 25 lines and 43/50 (depending on EGA/VGA).
:END